home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BARMDI.PAK / STATBAR.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  40 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. // PURPOSE:
  9. //    Contains declarations for the status bar module.
  10. //
  11.  
  12. //-------------------------------------------------------------------------
  13. #define IDM_STATUSBAR       501
  14. #define IDM_TIMER           701
  15. #define TIMER_TIMEOUT       1000
  16.  
  17.  
  18. // System Menu string ID's
  19. #define IDS_SYSMENU         900
  20. #define IDS_MDISYSMENU      901
  21.  
  22. #define IDS_SCSIZE          SC_SIZE
  23. #define IDS_SCMOVE          SC_MOVE
  24. #define IDS_SCMINIMIZE      SC_MINIMIZE
  25. #define IDS_SCMAXIMIZE      SC_MAXIMIZE
  26. #define IDS_SCNEXTWINDOW    SC_NEXTWINDOW
  27. #define IDS_SCPREVWINDOW    SC_PREVWINDOW
  28. #define IDS_SCCLOSE         SC_CLOSE
  29. #define IDS_SCRESTORE       SC_RESTORE
  30. #define IDS_SCTASKLIST      SC_TASKLIST
  31.  
  32.  
  33. // Global variable for status bar window
  34. extern HWND hWndStatusbar;
  35.  
  36. // Function prototypes for status bar creation
  37. BOOL CreateSBar(HWND);
  38. void InitializeStatusBar(HWND);
  39. void UpdateStatusBar(LPSTR, WORD, WORD);
  40.